Add version macros for 3.22
authorMatthias Clasen <mclasen@redhat.com>
Sat, 26 Mar 2016 18:08:10 +0000 (14:08 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 26 Mar 2016 18:08:10 +0000 (14:08 -0400)
gdk/gdkversionmacros.h.in

index 0dd77749f53850ad86c49903d20da7659baa2df7..bc2365df3db37e81e9960292dd7e2bbd187d9856 100644 (file)
  */
 #define GDK_VERSION_3_20        (G_ENCODE_VERSION (3, 20))
 
+/**
+ * GDK_VERSION_3_22:
+ *
+ * A macro that evaluates to the 3.22 version of GDK, in a format
+ * that can be used by the C pre-processor.
+ *
+ * Since: 3.20
+ */
+#define GDK_VERSION_3_22        (G_ENCODE_VERSION (3, 22))
+
 /* evaluates to the current stable version; for development cycles,
  * this means the next stable target
  */
 # define GDK_AVAILABLE_IN_3_20                _GDK_EXTERN
 #endif
 
+#if GDK_VERSION_MIN_REQUIRED >= GDK_VERSION_3_22
+# define GDK_DEPRECATED_IN_3_22               GDK_DEPRECATED
+# define GDK_DEPRECATED_IN_3_22_FOR(f)        GDK_DEPRECATED_FOR(f)
+#else
+# define GDK_DEPRECATED_IN_3_22               _GDK_EXTERN
+# define GDK_DEPRECATED_IN_3_22_FOR(f)        _GDK_EXTERN
+#endif
+
+#if GDK_VERSION_MAX_ALLOWED < GDK_VERSION_3_22
+# define GDK_AVAILABLE_IN_3_22                GDK_UNAVAILABLE(3, 22)
+#else
+# define GDK_AVAILABLE_IN_3_22                _GDK_EXTERN
+#endif
+
 #endif  /* __GDK_VERSION_MACROS_H__ */